home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / PACKAGES / AWK320.ZIP / LINE.AWK < prev    next >
Text File  |  1990-02-08  |  81b  |  7 lines

  1. # This program provides line numbering
  2. # AKW p 6
  3.  
  4. {
  5.         print NR, $0
  6. }
  7.